return value;
}
if (cacheEntry.isDirty()) {
return (cacheEntry.isRemoved()) ? null : cacheEntry.getValue();
}
return value;
} catch (Exception e) {
}
}
}
if (cacheEntry.isRemoved()) {
return null;
}
return cacheEntry.getValue();
}